<iframe><iframe>的问题

来源:百度知道 编辑:UC知道 时间:2024/06/04 10:37:57
<iframe id="editor" src="eWebEditor4.4完整版/ewebeditor.htm?table=cnk_company_content&zd=Content&id=<%= rs("id") %>" frameborder=1 scrolling=no width="600" height="405" style="display:block;"></iframe>中src那一段代码是什么意思啊,请各位高手帮帮忙啊

src是框架中想显示的URL地址
eWebEditor4.4完整版/ewebeditor.htm?table=cnk_company_content&zd=Content&id=<%= rs("id") %>"
这是一个在线HTML编辑器的地址

src就是这个iframe要显示的页面是那一个页面
如你这个例子 iframe要显示的就是eWebEditor4.4完整版/ewebeditor.htm 这个页面, 只不过带了一些参数table、zd和id而已

src= 指明了框架嵌套所显示的页面路径。(eWebEditor4.4完整版/ewebeditor.htm?table=cnk_company_content&zd=Content&id=<%= rs("id") %> ) 你这段代码里表示的应该就是“eWebEditor4.4完整版”文件夹下的“ewebeditor.htm”这个页面文件了。?后面的是一些参数,没有用。